ComponentOne Data Source for Entity Framework
C1.LiveLinq.Indexing Namespace / Subindex<T> Class
The type of the elements of the collection to index.
Members

In This Topic
    Subindex<T> Class
    In This Topic
    Base class for the Subindex<T,TKey> class.
    Object Model
    Subindex<T> Class
    Syntax
    'Declaration
     
    
    Public MustInherit Class Subindex(Of T) 
       Inherits IndexDefinition(Of T)
    public abstract class Subindex<T> : IndexDefinition<T> 
    Type Parameters
    T
    The type of the elements of the collection to index.
    Remarks
    You don't typically use the Subindex<T> class directly. It provides functionality of the Subindex<T,TKey> class that does not depend on the index key type. The base class Subindex<T> is needed only if the index key type is not known, usually in general-purpose code intended for reuse with different key types.
    Inheritance Hierarchy

    System.Object
       C1.LiveLinq.Indexing.IndexDefinition<T>
          C1.LiveLinq.Indexing.Subindex<T>
             C1.LiveLinq.Indexing.Subindex<T,TKey>

    See Also